home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / umich / utils / which5.zoo / makefile next >
Makefile  |  1992-07-03  |  332b  |  16 lines

  1. # Makefile for /usr/local/bin/which
  2.  
  3. CC        = gcc -v -z -Wall -Ig:/gnu/gcc/include -Lg:/gnu/gcc/lib
  4. LIBS        = -liio
  5.  
  6. which.ttp:    which5.c
  7.         $(CC) -O which5.c -o which.ttp $(LIBS)
  8.         fixstk 8K which.ttp
  9.         xstrip which.ttp
  10.  
  11. install:    which.ttp
  12.         /bin/mv -f which.ttp e:/local/bin
  13.  
  14. doc:
  15.         nroff -manx -T -rO1 which.man >which.1
  16.